<p>
表示一個段落,<p></p>
裡面的內容會自動分成一個段落
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
body{
background-color: antiquewhite;
}
</style>
</head>
<body>
<p>This is the first paragraph.</p>
<p>This is the second paragraph</p>
</body>
</html>
由此可知,<p>
會直接換行,進行下一個段落,所以如果要寫履歷表,詳細的資料就可以使用p
,也能直接進行分段
<p>
也能搭配<b>
做使用,<b>
能加粗字體,如果需要註記重點內容,就可以使用<b>
<p>This is the <b>first</b> paragraph.</p>
<p>This is the <b>second</b> paragraph</p>